subroutines - définition. Qu'est-ce que subroutines
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est subroutines - définition


subroutine         
SEQUENCE OF INSTRUCTIONS THAT CAN BE CALLED FROM OTHER POINTS IN A COMPUTER PROGRAM
Function (programming); Function (Programming); Activation framework; Procedure call; Subroutines; Algorithm function; Function (computer science); Procedure (computer science); Procedure (programming); Subprogram (programming); Subprograms; Function call; Function (computing); Function computer science; Called routine; System routine; Procedure (computing); Callable unit; Sub routine; Func; Jump to subroutine; Subprogram; Leaf function; Subroutine call; Method invocation; Local variables, recursion and reentrancy; Caller (programming); Sub program; Optimization of subroutine calls; Auxiliary subroutine; Closed subroutine; Functions (programming); Subroutine; Function calls
<programming> (Or "procedure") A sequence of instructions for performing a particular task. Most programming languages, including most machine languages, allow the programmer to define subroutines. This allows the subroutine code to be called from multiple places, even from within itself (in which case it is called recursive). The programming language implementation takes care of returning control to (just after) the calling location, usually with the support of call and return instructions at machine language level. Most languages also allow arguments to be passed to the subroutine, and one, or occasionally more, return values to be passed back. A function is often very similar to a subroutine, the main difference being that it is called chiefly for its return value, rather than for any side effects. (1996-10-01)
subroutine         
SEQUENCE OF INSTRUCTIONS THAT CAN BE CALLED FROM OTHER POINTS IN A COMPUTER PROGRAM
Function (programming); Function (Programming); Activation framework; Procedure call; Subroutines; Algorithm function; Function (computer science); Procedure (computer science); Procedure (programming); Subprogram (programming); Subprograms; Function call; Function (computing); Function computer science; Called routine; System routine; Procedure (computing); Callable unit; Sub routine; Func; Jump to subroutine; Subprogram; Leaf function; Subroutine call; Method invocation; Local variables, recursion and reentrancy; Caller (programming); Sub program; Optimization of subroutine calls; Auxiliary subroutine; Closed subroutine; Functions (programming); Subroutine; Function calls
¦ noun Computing a set of instructions designed to perform a frequently used operation within a program.
Function (computer programming)         
SEQUENCE OF INSTRUCTIONS THAT CAN BE CALLED FROM OTHER POINTS IN A COMPUTER PROGRAM
Function (programming); Function (Programming); Activation framework; Procedure call; Subroutines; Algorithm function; Function (computer science); Procedure (computer science); Procedure (programming); Subprogram (programming); Subprograms; Function call; Function (computing); Function computer science; Called routine; System routine; Procedure (computing); Callable unit; Sub routine; Func; Jump to subroutine; Subprogram; Leaf function; Subroutine call; Method invocation; Local variables, recursion and reentrancy; Caller (programming); Sub program; Optimization of subroutine calls; Auxiliary subroutine; Closed subroutine; Functions (programming); Subroutine; Function calls
In computer programming, a function or subroutine (when it doesn't return a value) is a sequence of program instructions that performs a specific task, packaged as a unit. This unit can then be used in programs wherever that particular task should be performed.